Nesta página você pode obter uma análise detalhada de uma palavra ou frase, produzida usando a melhor tecnologia de inteligência artificial até o momento:
общая лексика
анонимный канал
механизм IPC, обеспечивающий прямую связь между двумя процессами на одном компьютере для пересылки данных
Смотрите также
[tə'bækəupaip]
общая лексика
(курительная) трубка
общая лексика
трубочный табак
In computer science, an anonymous pipe is a simplex FIFO communication channel that may be used for one-way interprocess communication (IPC). An implementation is often integrated into the operating system's file IO subsystem. Typically a parent program opens anonymous pipes, and creates a new process that inherits the other ends of the pipes, or creates several new processes and arranges them in a pipeline.
Full-duplex (two-way) communication normally requires two anonymous pipes.
Pipelines are supported in most popular operating systems, from Unix and DOS onwards, and are created using the "|
" character in many shells.